Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

633439 Views

Latest files of /cody/swapnilsparsh/30DaysOfJavaScript/97 - Captcha Generator

assets/ cody/swapnilsparsh/30DaysOfJavaScript/97 - Captcha Generator/assets/
2 Items
  • favicon.ico
  • bg6.png
  • style.css cody/swapnilsparsh/30DaysOfJavaScript/97 - Captcha Generator/style.css
    119 Views
    0 Comments
    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    }

    body {
    index.html cody/swapnilsparsh/30DaysOfJavaScript/97 - Captcha Generator/index.html
    321 Views
    0 Comments
    <!DOCTYPE html>
    <html lang="en">
    <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Custom Captcha Generator</title>
    <link rel="stylesheet" href="style.css" />
    <link
    script.js cody/swapnilsparsh/30DaysOfJavaScript/97 - Captcha Generator/script.js
    186 Views
    0 Comments
    const captcha = document.querySelector('.captcha'),
    reloadbtn = document.querySelector('.reload'),
    inputText = document.querySelector('.input-text input'),
    verifyBtn = document.querySelector('.verify'),
    responseTxt = document.querySelector('.result');

    let characters = [
    'A',